📃Programming: Python
https://gyazo.com/9868e87cc598438e954da9148ec6248d
やってみたい
pyxel
シンプルな2Dゲームエンジン
pythonで動く
pyxelのインストール方法
python3.7以上をインストールする
コマンドプロンプトで以下のコマンドを打つ
py -m pip install -U pyxel
py
pythonを実行する
-m
モジュールを実行
Pythonは-mオプションを付けてpythonを実行するとモジュールを実行してくれます。
このオプションは$PYHTONPATHで設定されているモジュールの配置場所や、
設定ファイルなどで設定されているsys.pathの場所にあるモジュールを実行できます。
pip
python付属のソフトウェアマネージャ?
install
pipのインストールコマンド
-U
Force the stdout and stderr streams to be unbuffered. This option has no effect on the stdin stream.
stdoutおよびstderrストリームを強制的にバッファ解除します。このオプションは、stdinストリームには影響しません。
よくわからない
pyxel
インストールソフト名